projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
592ce97
)
(setenv): Treat case as significant.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 11 Jun 1993 21:33:27 +0000
(21:33 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 11 Jun 1993 21:33:27 +0000
(21:33 +0000)
lisp/env.el
patch
|
blob
|
history
diff --git
a/lisp/env.el
b/lisp/env.el
index 256a3338e60c32de8c8e0d5f008f889ce14873a0..cc68de9cf00c7ae8e5d2a7ea2dc6c5821ef939be 100644
(file)
--- a/
lisp/env.el
+++ b/
lisp/env.el
@@
-40,6
+40,7
@@
This function works by modifying `process-environment'."
(if (string-match "=" variable)
(error "Environment variable name `%s' contains `='" variable)
(let ((pattern (concat "\\`" (regexp-quote (concat variable "="))))
+ (case-fold-search nil)
(scan process-environment))
(while scan
(cond